home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
VBASIC
/
ROSETTES.ZIP
/
ROSETTES.FRM
< prev
next >
Wrap
Text File
|
1996-09-19
|
2KB
|
60 lines
VERSION 2.00
Begin Form Form1
BackColor = &H00000000&
BorderStyle = 0 'None
ClientHeight = 0
ClientLeft = 4260
ClientTop = 3405
ClientWidth = 930
ControlBox = 0 'False
Height = 405
Icon = ROSETTES.FRX:0000
Left = 4200
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 0
ScaleWidth = 930
Top = 3060
Width = 1050
End
' 09/01/94
'
' This screensaver was written because my wife wanted to see the various
' colors that VB could use. The backcolor is a randomly selected RGB color
' while the drawing color is a randomly selected QBcolor. Parts of this
' screensaver are from The Cobb Group publication "Inside Visual Basic for
' Windows". Since they allow subscriber's (I am one) to use their published
' code as the subscriber sees fit, I assume I am free to use it here.
'
' As far as I am concerned, you may use this program as you see fit.
' I do, however, disclaim any and all responsibility for anything that
' may happen to your computer if you do decide use it.
'
' This program was written on a 486 DX2 50 Mhz 8MB RAM system with DOS 6.2
' and Windows 3.1 running a Tseng Labs ET4000 board in 800x600x32K mode.
'
' Robert G. Bennis (AOL Address RGB7795)
Sub Form_KeyDown (KeyCode As Integer, Shift As Integer)
MONITOREVENTS KEYDOWNEXIT, KEYDOWNEXIT
End Sub
Sub Form_Load ()
If UCase$(Command$) = "/C" Then
Form1.Move 0, 0, 0, 0 ' hide form if in setup
Else
Form1.WindowState = 2
FIRSTTIME% = True
End If
End Sub
Sub Form_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
MONITOREVENTS KEYDOWNEXIT, KEYDOWNEXIT
End Sub
Sub Form_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
MONITOREVENTS X, Y
End Sub